home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ucturbo2 / border.h next >
Text File  |  1987-05-17  |  2KB  |  31 lines

  1. /*************************************************************************
  2.  *                            border.h                                   *
  3.  *                                                                       *
  4.  *    This header defines several border types that may be used in       *
  5.  *    building window programs.   The default attribute is either        *
  6.  *    gray or reverse gray.  This will work with monochrome monitors.    *
  7.  *    The default attribute may be changed be re-defining it within      *
  8.  *    your program.  In addition, other border types may also be         *
  9.  *    defined in your program in a manner similar to these examples.     *
  10.  *                                                                       *
  11.  *************************************************************************/
  12.  
  13.  
  14.  
  15. BORDER bdr1   = { 0x0da, 0x0bf, 0x0c0, 0x0d9, 0x0b3, 0x0c4, 0x07 };
  16. BORDER bdr1r  = { 0x0da, 0x0bf, 0x0c0, 0x0d9, 0x0b3, 0x0c4, 0x70 };
  17. BORDER bdr2   = { 0x0c9, 0x0bb, 0x0c8, 0x0bc, 0x0ba, 0x0cd, 0x0f };
  18. BORDER bdr2r  = { 0x0c9, 0x0bb, 0x0c8, 0x0bc, 0x0ba, 0x0cd, 0xf0 };
  19. BORDER bdr12  = { 0x0d5, 0x0b8, 0x0d4, 0x0be, 0x0b3, 0x0cd, 0x07 };
  20. BORDER bdr12r = { 0x0d5, 0x0b8, 0x0d4, 0x0be, 0x0b3, 0x0cd, 0x70 };
  21. BORDER bdr21  = { 0x0d6, 0x0b7, 0x0d3, 0x0bd, 0x0ba, 0x0c4, 0x07 };
  22. BORDER bdr21r = { 0x0d6, 0x0b7, 0x0d3, 0x0bd, 0x0ba, 0x0c4, 0x70 };
  23. BORDER star   = { '*',   '*',   '*',   '*',   '*',   '*',   0x07 };
  24. BORDER starr  = { '*',   '*',   '*',   '*',   '*',   '*',   0x70 };
  25. BORDER dot    = { '·',   '·',   '·',   '·',   '·',   '·',   0x07 };
  26. BORDER dotr   = { '·',   '·',   '·',   '·',   '·',   '·',   0x70 };
  27.  
  28.  
  29.  
  30.  
  31.